c# read xml tag value

83

c# read xml tag value -

XmlNodeList nodeList=
(infodoc.SelectNodes("configuration/Settings/directory"));

foreach (XmlNode elem in nodeList)
{
string strValue = elem.Attributes[1].Value;

}

Comments

Submit
0 Comments